home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_actor_centipede.cog < prev    next >
Text File  |  1999-11-15  |  929b  |  46 lines

  1. # Jones 3D Cog Script
  2. #
  3. # actor_Centipede.cog
  4. #
  5. # [PKM]
  6. #
  7. # Kills off the centipedes when Indy collides with them.
  8. #
  9. # (C) 1999 LucasArts Entertainment Company LLC. All Rights Reserved
  10. #
  11. # ===================================================================
  12.  
  13. symbols
  14.  
  15.     message        touched
  16.  
  17.     thing        sender        local
  18.     thing        source        local
  19.  
  20. end
  21.  
  22. # ===================================================================
  23. code
  24.  
  25. touched:
  26.  
  27.     sender = GetSenderRef();
  28.     source = GetSourceRef();
  29.  
  30.     if (source == GetLocalPlayerThing())
  31.     {
  32.         # Ignore touch if Indy's standing still...
  33.         if ( VectorLen(GetThingVel(source)) == 0 )
  34.             return;
  35.  
  36.         # Indy Stepped on us!  Maybe we should give him a little payback...
  37.         if (Rand() < 0.5)
  38.             DamageThing(source, 1.0, 0x100, sender);
  39.  
  40.         # Unfortunately, it's gonna cost us too... time to die!
  41.         DamageThing(sender, GetHealth(sender), 0x80, source);
  42.     }
  43.     return;
  44.  
  45. end
  46.